home *** CD-ROM | disk | FTP | other *** search
- #import <AppKit/AppKit.h>
-
-
-
- @interface balls : NSView {
- NSWindow *mWindow;
- NSTimer *mTimer;
- NSTimeInterval mInterval;
- BOOL mRunning;
- }
-
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
- - (void)awakeFromNib;
-
- - (void)drawRect:(NSRect)rect;
- - (void)drawRandomBallInside:(const NSRect *)rect;
- - (void)drawAnother:(id)timer;
- - (void)setTimerRunning:(BOOL)run source:(id)source;
- - (void)setTimerInterval:(float)interval source:(id)source;
- @end
-